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