mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 19:46:36 +00:00
build: incorporate sveltekit/vite
This commit is contained in:
parent
abfc472c82
commit
0be42a4b66
10 changed files with 237 additions and 5211 deletions
18
svelte.config.js
Normal file
18
svelte.config.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
import adapter from "@sveltejs/adapter-static";
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
preprocess: [],
|
||||
kit: {
|
||||
adapter: adapter(),
|
||||
target: "#svelte",
|
||||
files: {
|
||||
assets: "app/static",
|
||||
lib: "app/lib",
|
||||
routes: "app/routes",
|
||||
template: "app/app.html",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
Loading…
Add table
Add a link
Reference in a new issue