mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
|
/** @type {import("snowpack").SnowpackUserConfig } */
|
||
|
const config = {
|
||
|
mount: {
|
||
|
src: "/",
|
||
|
},
|
||
|
plugins: ["@snowpack/plugin-typescript"],
|
||
|
buildOptions: {
|
||
|
jsxInject: `import { h, Fragment } from "preact"`,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|