mirror of
https://github.com/robonen/canvas-3d.git
synced 2026-03-20 10:54:39 +00:00
23 lines
448 B
TypeScript
23 lines
448 B
TypeScript
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
import {defineNuxtConfig} from 'nuxt/config';
|
|
import {resolve} from 'path';
|
|
|
|
const SRC = resolve(__dirname, 'src');
|
|
|
|
export default defineNuxtConfig({
|
|
srcDir: SRC,
|
|
app: {
|
|
head: {
|
|
title: 'Canvas 3D',
|
|
link: [{rel: 'icon', href: '/favicon.svg'}],
|
|
},
|
|
},
|
|
css: ['@/assets/styles/main.scss'],
|
|
typescript: {
|
|
shim: false,
|
|
},
|
|
modules: [
|
|
'@vueuse/nuxt',
|
|
],
|
|
})
|