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