You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
import adapter from "@sveltejs/adapter-static";
|
|
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter({
|
|
pages: "build",
|
|
assets: "build",
|
|
fallback: undefined,
|
|
precompress: false,
|
|
strict: true
|
|
})
|
|
}
|
|
};
|
|
|
|
config.paths = { base: process.argv.includes("dev") ? "" : process.env.BASE_PATH };
|
|
|
|
export default config; |