module.exports = {
mount: {
public: { url: '/', static: true },
src: { url: '/' },
},
plugins: [
['./posthtml-transform', {
plugins: {
'posthtml-modules': { root: './src', },
},
}],
],
};
snowpack.config.js
module.exports = {
mount: {
public: { url: '/', static: true },
src: { url: '/' },
},
plugins: [
'./posthtml-transform',
],
};
posthtml.config.js
module.exports = (ctx) => {
return {
...options,
plugins: {
'posthtml-modules': { root: './src', },
}
}
}