Starting webapp dev.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import adapter from '@sveltejs/adapter-node';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
compilerOptions: {
|
||||
// Force runes mode for the project, except for libraries. Can be removed in svelte 6.
|
||||
runes: ({ filename }) => filename.split(/[/\\]/).includes('node_modules') ? undefined : true
|
||||
},
|
||||
kit: {
|
||||
adapter: adapter(),
|
||||
typescript: {
|
||||
config: (config) => ({
|
||||
...config,
|
||||
include: [...config.include, '../drizzle.config.js']
|
||||
})
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user