-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this work with webpack-dev-server? #3
Comments
@evandiamond Do you use the build in Browsersync from Laravel mix? |
@justkidding96 I do not, just a standard Webpack + Webpack Dev Server. |
@evandiamond I did make this as extension for Laravel Mix with Browsersync. I can try to make it compatible with Webpack Dev Server. Can you provide any information which version you are using? |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My current setup:
const IncludeReplaceWebpackPlugin = require('include-replace-webpack-plugin');
Plugins:
File structure:
src/views/partials/footer.html
:@@show('title')
src/views/index.html
:@@include('./partials/footer.html', {"title": "My custom title"})
The html pages just show the following:
@@include('./views/partials/footer.html', {"title": "My custom title"})
they don't bring the partial in:(
Thoughts?
The text was updated successfully, but these errors were encountered: