mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00
18 lines
374 B
JavaScript
18 lines
374 B
JavaScript
/** @type {import("snowpack").SnowpackUserConfig } */
|
|
module.exports = {
|
|
mount: {
|
|
"web/": '/'
|
|
},
|
|
plugins: [
|
|
'@prefresh/snowpack',
|
|
['@snowpack/plugin-typescript', '--project tsconfig.web.json'],
|
|
],
|
|
packageOptions: {
|
|
installTypes: true,
|
|
polyfillNode: true,
|
|
},
|
|
buildOptions: {
|
|
out: 'public'
|
|
},
|
|
};
|
|
|