Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/GoodManWEN/vuetify-tailwind-animate-starter

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/GoodManWEN/vuetify-tailwind-animate-starter

  • v0.0.0-20210419064824-2370e7b6ea33
  • Source
  • Go
  • Socket score

Version published
Created
Source

vuetify-tailwind-animate-starter

A production ready template with essential tools.

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.

Packages

@vue/cli 4.5.11, Blank template with ESLint
vuetify default
node-sass & sass-loader
tailwindcss + postcss
animate.css
vuex
vue-router
axios & vue-axios
vue-wechat-title

Steps

To create a production ready project:

vue create demo
cd demo
vue add vuetify
npm install -D sass-loader node-sass
npm install animate.css
npm install tailwindcss

create ./assets/tailwind.css:

@tailwind base;
@tailwind components;
@tailwind utilities;

add to main.js

import "@/assets/tailwind.css"

create setting file

npx tailwind init --full

test run

npm run serve

oops, program went wrong seems like we're still missing some dependencies.

npm uninstall tailwindcss postcss autoprefixer
npm install tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9

and create a postcss configure file: postcss.config.js

module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
  },
}

then

npm install vuex --save
npm install vue-router
npm install axios --save
npm install vue-axios --save
npm install vue-wechat-title --save

Remarks

  • By default, backend proxy at 127.0.0.1:8079 -> /dev/
  • By default, all tailwind.css classes should be used with prefix tw- and all animate.css classes should be used with prefix animate__

FAQs

Package last updated on 19 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc