1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/snowpack/snowpack.config.mjs
2021-10-14 11:06:02 +09:00

12 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;