mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 03:25:12 +01:00
Better comment
This commit is contained in:
parent
38c3774869
commit
9d8a578dce
@ -3,8 +3,9 @@ const mergeOptions = require('merge-options');
|
|||||||
const themeBuilder = require("./scripts/build-plugins/rollup-plugin-build-themes");
|
const themeBuilder = require("./scripts/build-plugins/rollup-plugin-build-themes");
|
||||||
const {commonOptions, compiledVariables} = require("./vite.common-config.js");
|
const {commonOptions, compiledVariables} = require("./vite.common-config.js");
|
||||||
|
|
||||||
// These paths will be saved without their hash so they have a consisent path to
|
// These paths will be saved without their hash so they have a consisent path
|
||||||
// reference in imports.
|
// that we can reference in our `package.json` `exports`. And so people can import
|
||||||
|
// them with a consistent path.
|
||||||
const pathsToExport = [
|
const pathsToExport = [
|
||||||
"main.js",
|
"main.js",
|
||||||
"download-sandbox.html",
|
"download-sandbox.html",
|
||||||
@ -21,7 +22,8 @@ export default mergeOptions(commonOptions, {
|
|||||||
output: {
|
output: {
|
||||||
assetFileNames: (chunkInfo) => {
|
assetFileNames: (chunkInfo) => {
|
||||||
// Get rid of the hash so we can consistently reference these
|
// Get rid of the hash so we can consistently reference these
|
||||||
// files in our `package.json` `exports`
|
// files in our `package.json` `exports`. And so people can
|
||||||
|
// import them with a consistent path.
|
||||||
if(pathsToExport.includes(path.basename(chunkInfo.name))) {
|
if(pathsToExport.includes(path.basename(chunkInfo.name))) {
|
||||||
return "assets/[name].[ext]";
|
return "assets/[name].[ext]";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user