Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 616 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 616 Bytes

No Maintenance Intended

webpack-config (DEPRECATED)

A Webpack 2.0 config to be used in conjunction with generator-da

Available aliases

These can be used when importing or requiring modules instead of a relative or absoulte path

  • actions => src/actions
  • components => src/components
  • styles => src/styles
  • ~ => src

Example:

// before
import TestComponent from '../../components/test-component';

// after
import TestComponent from 'components/test-component';