1
0
mirror of https://github.com/robonen/canvas-3d.git synced 2026-03-20 02:44:40 +00:00

feat(engine): wasm experiments

This commit is contained in:
2022-11-25 01:19:37 +07:00
parent aa8d740ca9
commit 9f6e2bd0d5
6 changed files with 44 additions and 7 deletions

View File

@@ -1,7 +1,8 @@
// https://v3.nuxtjs.org/api/configuration/nuxt.config
import {resolve} from 'path';
import { resolve } from 'path';
const SRC = resolve(__dirname, 'src');
const PACKAGES = resolve(__dirname, 'packages');
export default defineNuxtConfig({
srcDir: SRC,
@@ -9,7 +10,7 @@ export default defineNuxtConfig({
app: {
head: {
title: 'Canvas 3D',
link: [{rel: 'icon', href: '/favicon.svg'}],
link: [{ rel: 'icon', href: '/favicon.svg' }],
},
},
css: ['@/assets/styles/main.scss'],
@@ -17,7 +18,5 @@ export default defineNuxtConfig({
typeCheck: true,
shim: false,
},
modules: [
'@vueuse/nuxt',
],
})
modules: ['@vueuse/nuxt'],
});