chore: initialize project with package.json and tsconfig.json
- Added package.json for project dependencies and scripts - Included tsconfig.json for TypeScript configuration
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import { defineConfig } from 'astro/config';
|
||||
import sitemap from '@astrojs/sitemap';
|
||||
|
||||
export default defineConfig({
|
||||
site: 'https://louis-potevin.dev',
|
||||
trailingSlash: 'ignore',
|
||||
integrations: [sitemap()],
|
||||
vite: {
|
||||
css: {
|
||||
preprocessorOptions: {
|
||||
scss: {
|
||||
quietDeps: true,
|
||||
loadPaths: [
|
||||
'node_modules',
|
||||
'node_modules/@unkn0wndo3s/nova-design-system/src/styles',
|
||||
'src',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user