mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 07:02:04 +03:00
37af06b14d
[Task link](https://www.pivotaltracker.com/story/show/183992025) This PR moves the documentation visualization into a separate crate and sets up the Tailwind CSS framework for this new crate. We would use Tailwind to style our HTML documentation. https://user-images.githubusercontent.com/6566674/208719213-85f78f7e-8dc2-45d5-95a1-db4baad1bda1.mp4
9 lines
152 B
JavaScript
9 lines
152 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['src/**/*.rs'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|