Skip to content

Instantly share code, notes, and snippets.

@janstuemmel
Last active December 22, 2019 17:29
Show Gist options
  • Save janstuemmel/9aadaf408267e17b291d55f60dcd42bc to your computer and use it in GitHub Desktop.
Save janstuemmel/9aadaf408267e17b291d55f60dcd42bc to your computer and use it in GitHub Desktop.
Parcel bundler and postcss modules

Parcel Bundler + module stylesheets

Setup

npm i -D postcss-modules
// ./.postcssrc
{
  "modules": true,
  "plugins": {
    "postcss-modules": {
      "camelCase": true
    }
  }
}
/* ./main.css */
.post-title {
  color: blue;
}
// ./main.js

import { postTitle } from './main.css'

console.log(postTitle)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment