mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-03 10:57:18 +00:00
c5a4465572
[release] Co-authored-by: Sébastien Chopin <seb@nuxtjs.com> Co-authored-by: pimlie <pimlie@hotmail.com>
11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
import consola from 'consola'
|
|
import start from './start'
|
|
|
|
export default {
|
|
...start,
|
|
run (...args) {
|
|
consola.warn('`nuxt serve` has been deprecated! Please use `nuxt start`.')
|
|
return start.run.call(this, ...args)
|
|
}
|
|
}
|