oscarbarrett / craft-twig-webpack-extension
A plugin that provides https://github.com/fullpipe/twig-webpack-extension
Installs: 4 136
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 0
Type:craft-plugin
Requires
- craftcms/cms: ^3.0.0-RC1
- fullpipe/twig-webpack-extension: ^2.0
This package is auto-updated.
Last update: 2022-05-04 09:40:37 UTC
README
A plugin that provides https://github.com/fullpipe/twig-webpack-extension
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later.
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require OscarBarrett/craft-twig-webpack-extension
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Twig Webpack Extension.
Configuration
Create a file at craft/config/twig-webpack-extension.php
.
If your assets and manifest are in the same directory, simply set outputDir
:
return [
'outputDir' => '<outputDir>'
];
Alternatively, you can set each parameter separately:
return [
'manifestPath' => <outputDir>/manifest.json',
'jsPath' => '<jsOutputDir>/',
'cssPath' => '<cssOutputDir>/'
];
The plugin can also be configured from the CMS.