-
-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
These changes allow empty public path in webpack.config.js #264
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -227,6 +227,35 @@ describe('Functional tests using webpack', function() { | |
}); | ||
}); | ||
|
||
it('Deploying to an unknown (at compile-time) subdirectory is no problem', (done) => { | ||
const config = createWebpackConfig('public/build', 'dev'); | ||
config.addEntry('main', './js/code_splitting'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should also include an entry that loads a CSS file normally (i.e. without code splitting) that includes a path to an image or a font. Then, after running webpack, we can manually check the contents of the final CSS file to make sure that the path to that image is correct. As I understand it, THAT is the biggest problem we're having with relative paths: the paths to images/fonts in CSS files was being generated incorrectly. Unfortunately, the |
||
config.setPublicPath(''); | ||
config.setManifestKeyPrefix('build/'); | ||
|
||
testSetup.runWebpack(config, (webpackAssert) => { | ||
webpackAssert.assertManifestPath( | ||
'build/main.js', | ||
'build/main.js' | ||
); | ||
|
||
testSetup.requestTestPage( | ||
path.join(config.getContext(), 'public'), | ||
[ | ||
convertToManifestPath('build/main.js', config) | ||
], | ||
(browser) => { | ||
webpackAssert.assertResourcesLoadedCorrectly(browser, [ | ||
'http://127.0.0.1:8080/build/0.js', | ||
'http://127.0.0.1:8080/build/main.js' | ||
]); | ||
|
||
done(); | ||
} | ||
); | ||
}); | ||
}); | ||
|
||
it('Empty manifestKeyPrefix is allowed', (done) => { | ||
const config = createWebpackConfig('build', 'dev'); | ||
config.addEntry('main', './js/code_splitting'); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it make sense to move this inside of the first if statement? I mean: if the path is not absolute (
https://....
) or starting with a slash (/build
), then we should do this? Or is there something special about an emptypublicPath
?